@font-face {
  font-family: 'Gotham-Light';
  src: url("../fonts/Gotham-Light.woff2") format("woff2"), url("../fonts/Gotham-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Gotham-Medium';
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }
  
#page-loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    display: block;
    background: #fff;
    display:table;
    width:100%;
    height:100%;
}
.load-globe{
    height:100vh;
    width:100%;
    display:table-cell;
    text-align:center;
    vertical-align:middle;
}
.load-globe img{width:200px;}
.page-loader-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border-radius: 50%;
    border: 2px solid;
    border-top-color: rgba(0, 0, 0, 0.65);
    border-bottom-color: rgba(0, 0, 0, 0.15);
    border-left-color: rgba(0, 0, 0, 0.65);
    border-right-color: rgba(0, 0, 0, 0.15);
    -webkit-animation: page-loader-circle 0.8s linear infinite;
	-moz-animation: page-loader-circle 0.8s linear infinite;
	-ms-animation: page-loader-circle 0.8s linear infinite;
	-o-animation: page-loader-circle 0.8s linear infinite;
    animation: page-loader-circle 0.8s linear infinite;
}
@keyframes page-loader-circle {
    from {
        -webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes page-loader-circle {
    from {
        -webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
    }
}

/* ==========================================================================
                2.Header
  ========================================================================== */
header {
    float: left;
    width: 100%;
    position: absolute;
    z-index: 9;
	padding-top:30px;
	background-color: transparent;
}
.logo-area {
    float: left;
    width: 100%;
}
.logo-area img {
    width: 120px;
	-webkit-transition: .5s;
    -moz-transition: .5s;
	-ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.menu-area {
    float: left;
    width: 100%;
	padding-top: 8px;
}
.navbar-default {
    background-color: transparent;
    border: none;
}
.navbar-nav > li > a {
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 12px;
	letter-spacing:2px;
	color:#fff !important;
    text-transform: uppercase;
}
.navbar-nav > li > a:hover {
	color: #ababab !important
} 
.navbar-nav > li > a:before {
	position:absolute;
	content:'';
	width:20px;
	height:1px;
	background:#ababab;
	bottom:-10px;
	left:15px;
	transform:scaleX(0);
	-webkit-transition:.4s;
	-moz-transition:.4s;
	-ms-transition:.4s;
	-o-transition:.4s;
	transition:.4s;
}
.navbar-nav > li > a:hover::before {
	transform:scaleX(1)
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: transparent;
}
.dropdown-menu {
    z-index:999;
	min-width: 160px;
    font-size: 14px;
    background: rgba(27, 27, 27,.8);
    border-radius: 0;
    box-shadow: none;
}
.dropdown-menu	li > a {
	color:#fff !important;
	font-size: 12px;
	letter-spacing:2px;
	font-weight:300;
	padding: 10px 20px;
    text-transform: uppercase;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: #ababab !important;
    text-decoration: none;
    background-color: transparent;
}
.navbar-nav > li > .dropdown-menu {
	margin-top: 8px;
    left: 10px;
    min-width: 230px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-toggle {
    padding: 15px 15px;
    background-color: #111;
    border: none;
    border-radius: 0px;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #fff;
	border-color: #fff;
}
.navbar-default .navbar-toggle:hover .icon-bar, .navbar-toggle:focus .icon-bar{
    background-color: #111;
}
.header-contact ul li {
	padding-left:10px;
	position:relative;
}
.header-contact ul li:before {
	position:absolute;
	content:'';
	top:0px;
	left:0px;
	font-family:'FontAwesome';
	font-size:14px;
	color:#ececec;
}
.header-contact ul li.mail:before {
	content:'\f0e0';
}
.header-contact ul li.tel:before {
	content:'\f095';
}
.header-contact ul li a {
    color:#ececec !important;
	font-size:12px;
	letter-spacing:2px;
	font-weight:400;
	-webkit-transition:.4s;
	-moz-transition:.4s;
	-ms-transition:.4s;
	-o-transition:.4s;
	transition:.4s;		
}
.header-contact ul li a:before {
    content: initial;
}
.header-contact ul li a:hover {
    color:#b9b9b9;	
}
/* ====================
      Sticky Header
  ==================== */
header.sticky {
    position: fixed;
    background-color: rgba(0,0,0,.7);
    z-index: 999;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    padding-top: 10px;
}
header.sticky .logo-area img {
    width: 90px;
}
header.sticky .menu-area {
    float: left;
    width: 100%;
    padding-top: 3px;
}
header.sticky .navbar {
    min-height: auto;
    margin-bottom: 17px;
}
/* ==========================================================================
                3.Banner-section
  ========================================================================== */
section#banner-section {
    position:relative;
	top:0px;
	left:0px;
	float: left;
    width: 100%;
	height:100vh;	
	background:url(../images/web-banner-high.jpg) 50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed
}
section#banner-section:after{
    position: absolute;
    content: '';
	width: 100%;
    height: 100%;
    top: 0px;
	bootom:0px;
    left: 0px;	
    background: rgba(0, 0, 0, 0);
}
.banner-text {
    float: left;
    width: 100%;
    text-align: center;
	position:relative;
	z-index:1;
    -webkit-transform: translateY(40vh);
	-moz-transform: translateY(40vh);
	-ms-transform: translateY(40vh);
	-o-transform: translateY(40vh);
	transform: translateY(40vh);
}
.banner-text h4 {
    font-size: 50px;
    color: #fff;
    font-weight: 100;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.banner-text h5 {
    font-size: 28px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 4px;
    color: #fff;
	margin-top:20px;
}
.banner-text a.view-link {
    text-align: center;
    padding: 10px 50px;
	font-size:12px;
	font-weight:400;
	letter-spacing:2px;
	text-transform: uppercase;
    color: #111;
    display: inline-block;
    margin-top: 20px;
	background: rgba(255,255,255, .8);
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	-ms-border-radius:2px;
	-o-border-radius:2px;
	border-radius:2px;
	-webkit-transition: background .4s,color .4s; 
	-moz-transition: background .4s,color .4s; 
	-ms-transition: background .4s,color .4s; 
	-o-transition: background .4s,color .4s; 
	transition: background .4s,color .4s; 
}
.banner-text a.view-link:hover {
	background: #111;
	color:#fff;
}
/* ==========================================================================
                4.About-section
  ========================================================================== */
section#about-section {
	float: left;
    width: 100%;
	padding:35px 0px;
}
.text-title	{
	float: left;
    width: 100%;
	text-align: center;	
}
span.color{color: #289b0c;}
.text-title h5{
    position: relative;
	display: inline-block;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #111;
	margin-bottom:20px;
	font-family: 'Gotham-Medium';
}
.text-title h5:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 1px;
    background-color: #111;
    bottom: -17px;
    left: 40%;
}
.invite-tittle h5:after{
    display: none !important
}
.about-section-contents {
    float: left;
    width: 100%;
	padding-top: 30px;
    text-align: center;
}
.about-us-contents {
    float: left;
    width: 100%;
	padding: 0px;
}
.about-us-contents h5 {
	position: relative;
	font-size: 24px;
	color:#111;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
	margin-bottom:40px;
}
.about-us-contents h5:before {
    position: absolute;
    content: '';
    bottom: -20px;
    left: 0px;
    width: 40px;
    height: 1px;
	background-color:#111;
}
.about-us-contents p {
    font-size: 18px;
    line-height: 26px;
    color: #444444;
    font-weight:600;
	margin-bottom:10px;
}
.content-p p{
    color: #000 !important;
    font-weight: 600;
    line-height: 24px;
    /*text-align: justify;*/
}
.about-us-contents a.view-link {
    text-align: center;
    padding: 10px 50px;
	font-size:12px;
	font-weight:400;
	letter-spacing:2px;
	text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
	background: #111;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	-ms-border-radius:2px;
	-o-border-radius:2px;
	border-radius:2px;
	-webkit-transition: background .4s,color .4s;
	-moz-transition: background .4s,color .4s; 
	-ms-transition: background .4s,color .4s; 
	-o-transition: background .4s,color .4s; 
	transition: background .4s,color .4s;  
}
.about-us-contents a.view-link:hover {
	background: #ababab;
	color:#fff;
}
.about-us-contents-img {
    float: left;
    width: 100%;
	overflow:hidden;
    padding: 0px 0px;
	position:relative;
}
.about-us-contents-img:before {
	position:absolute;
	content:'';
	width:80%;
	height:80%;
	border:1px solid #fff;
	top:0px;
	left:0px;
	z-index:1;
}
.about-us-contents-img img{
    width: 100%;
	-webkit-transition: .4s ease-in;
	-moz-transition: .4s ease-in; 
	-ms-transition: .4s ease-in; 
	-o-transition: .4s ease-in; 
	transition: .4s ease-in; 		
}
.about-us-contents-img:hover > img {
    transform: scale(1.1);
}
.about-us-contents-img:before {
    position: absolute;
    content: '';
    width: 96%;
    height: 93%;
    border: 1px solid #cecece;
    top: 12px;
    left: 12px;
}
/* ==========================================================================
                5.Call-section 
  ========================================================================== */
section#call-section {
	float: left;
    width: 100%;	
	padding:0px;
	background:url(../images/bg/call-bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}
section#call-section:after{
    position: absolute;
    content: '';
	width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;	
    background: rgba(0, 0, 0, 0.5);
}
.call-contents {
	float: left;
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: rgba(51, 102, 153, 0.61);
    /*background-image:url(../images/bg2.png);*/
	text-align:center;
    padding: 70px 30px 70px 20px;
}
.call-contents h6 {
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Gotham-Medium';
}
.call-contents p {
    color: #fff;
    margin-top: 8px;
    font-size: 18px;
	line-height:23px;
    text-align: justify;
    letter-spacing: 0;
    word-spacing: -0.5px;
}
.call-li{
    text-align: left;
    padding: 7px 0 7px 20px;
    /*border-top: 1px solid #cecece;*/
    margin-top: 8px;
    margin-bottom: 8px;
    /*border-bottom: 1px solid #fff;*/
    background: rgba(51, 102, 153, 0.2);
    border-left: 2px solid #fff;
}
.call-li li{
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    display: table;
    width: 100%;
    font-weight: bold;
}
.call-li li>i{display: table-cell;padding-left:10px;transform: scaleX(-1);text-align: right;width: }
.call-li li>span{display: table-cell;text-align: left;width: 100%}
/* ==========================================================================
                6.Core Features
  ========================================================================== */ 
section#core-features-section {
	float: left;
    width: 100%;
	padding:60px 0px;
}
.text-title p {
    font-size: 15px;
    padding: 0px 15%;
    line-height: 22px;
    margin-top: 20px;
}
.single-features {
    float: left;
    width: 100%;
    text-align: center;
    padding: 40px 15px 0px 15px;
	margin-top:30px;
}

.single-features h6 {
	font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 20px 0px;
    letter-spacing: 3px;
}
.single-features p {
    font-size: 14px;
    line-height: 22px;
    color: #444;
}
/* ==========================================================================
                7.Fun-fact Section
  ========================================================================== */ 
section#fun-fact-section {
	float: left;
    width: 100%;	
	padding:60px 0px;
	background:url( ../images/bg/fun-bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}
section#fun-fact-section:after{
    position: absolute;
    content: '';
	width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;	
    background: rgba(0, 0, 0, 0.7);
}
.fun-fact-contents {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
}
.single-fun-fact {
    float: left;
    width: 100%;
    text-align: center;
}
.single-fun-fact h6 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 20px 0px;
}
.single-fun-fact span.counter {
    font-size: 40px;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 500;
}
/* ==========================================================================
                8.Portfolio Section 
  ========================================================================== */ 
section#portfolio-section {
	float: left;
    width: 100%;	
	padding:60px 0px;
}
.porfolio-contents {
    float: left;
    width: 100%;
}
.portfolio-filter {
    float: left;
    width: 100%;
	margin-top: 30px;
}
ul.filters {
    float: left;
    width: 100%;
    text-align: center;
}
ul.filters li {
    display: inline-block;
    padding: 0px 20px;    
}
li.filter a{
	position: relative;
    font-size: 14px;
	text-transform: uppercase;
    color: #444;
    letter-spacing: 2px;
    font-weight: 400;
}
li.filter a:before{
	position: absolute;
    content: '';
    width: 0px;
    height: 1px;
	opacity:0;
    background-color: #444;
    bottom: -10px;
	-webkit-transition: all ease .5s;
	-moz-transition: all ease .5s;
	-ms-transition: all ease .5s;
	-o-transition: all ease .5s;
	transition: all ease .5s;
}
li.filter a:hover:before,
li.filter.active a:before{
    width: 15px;
	left: 0px;
	opacity:1;
}
div#isotope-grid {
    float: left;
    width: 100%;
    margin-top: 40px;
}
.grid-item {
    float: left;
    display: inline-block;
    margin-bottom:40px;
}
.single-grid-item {
    float: left;
    width: 100%;
    position: relative;
	overflow:hidden;
}
.single-grid-item img {
	width: 100%;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    bottom: 0; 
}
.single-grid-item:hover img {
    bottom: 60px; 
}
.item-hover {
    position: absolute;
    bottom: -60px;
    left: 0px;
	float:left;
	width:100%;
	height: 80px;
	text-align:center;
	padding:20px 0px;    
    background-color: #000;
    visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.single-grid-item:hover .item-hover {
    visibility:	visible;
	bottom: 0px;
}
.item-hover h6 {
    color: #fff;
    font-size: 16px;
	font-weight:500;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.item-hover a {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin-top:5px;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;	
}
.item-hover a:hover {
    color: lightgrey;
}
/* ==========================================================================
                9.Testimonial Section
  ========================================================================== */ 
section#testimonial-section  {
	float: left;
    width: 100%;	
	padding:60px 0px;
	background:url( ../images/bg/testimonial-bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}
section#testimonial-section:after{
    position: absolute;
    content: '';
	width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;	
    background: rgba(0, 0, 0, 0.9);
}
.testimonial-contents{
	float:left;
	width:100%;
	position:relative;
	z-index:1;
}
.text-title.white-title h5 {
    color: #fff;
}
.text-title.white-title h5:after {
    background-color: #fff;
}
.text-title.white-title p{
    color: #fff;
}
.testimonial-contents .owl-carousel {
	float: left;
	margin-top: 40px;
    position: relative;
    padding-top: 40px;
}
.testimonial-contents .owl-carousel:before {
    position: absolute;
    content: '\f10e';
    top: 0px;
    left: 48%;
    font-family: fontawesome;
    color: #cacaca;
    font-size: 30px;
}
.testimonial-contents .item {
    float: left;
    width: 100%;
    text-align: center;
    padding: 0px 10%;
}
.testimonial-contents .item h4 {
    font-size: 16px;
    font-weight: 200;
    color: #fff;
    line-height: 30px;
}
.testimonial-contents .item p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin: 20px 0px;
}
.testimonial-contents .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}
.testimonial-contents .owl-theme .owl-dots .owl-dot span {
    border: 2px solid transparent;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.testimonial-contents .owl-theme .owl-dots .owl-dot.active span,
.testimonial-contents .owl-theme .owl-dots .owl-dot:hover span {
	border: 2px solid #444;
}
/* ==========================================================================
                10.Skills Section
  ========================================================================== */ 
section#skills-section {
	float: left;
    width: 100%;	
	padding:60px 0px 80px;
	background:#f7f7f7;
    background-image: url('../images/bg2.png');
    text-align:center;
}
.progress-contents {
	float: left;
    width: 100%;
    padding: 30px 0px;
}
.progress-contents h5 {
    position: relative;
	font-size: 24px;
	color:#111;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
	margin-bottom:40px;
}
.progress-contents h5:before {
    position: absolute;
    content: '';
    bottom: -20px;
    left: 0px;
    width: 40px;
    height: 1px;
	background-color:#111;
}
.progress-contents p {
    font-size: 16px;
    line-height: 24px;
    color: #444444;
	margin-bottom:10px;
}
.skills-info {
    float: left;
    width: 100%;
    margin-top: 40px;
}
.single-skill {
	float: left;
    width: 100%;
	margin-bottom:10px;
}
.progress {
	width: 80%;
    height: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #e2e2e2;
    border-radius: 4px;
    box-shadow: none;
} 
.progress-bar {
    background-color: #111111;
}  
.single-skill h6 {
    font-size: 15px;
    font-weight: 500;	
    color: #444444;
    margin-bottom: 8px;
}
/* ==========================================================================
                11.Our-team Section
  ========================================================================== */ 
section#our-team-section {
	float: left;
    width: 100%;	
	padding:60px 0px;
}
.single-team-member {
    float: left;
    width: 100%;
    position: relative;
	cursor:pointer;
	margin-top:40px;
    overflow: hidden;	
}
.single-team-member img {
    width: 100%;	
}
.member-info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color: rgba(0, 0, 0, 0.8);
	text-align:center;
	opacity: 0;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.single-team-member:hover .member-info {
    width: 100%;
    opacity: 1;
}
.member-info h6 {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 56%;
}
.member-info p {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}
.member-info ul {
    margin-top:20px;
}
.member-info ul li {
    list-style: none;
    display: inline-block;
}
.member-info ul li a {
    color:#fff;
	font-size:16px;
	padding:0px 10px;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;	
}
.member-info ul li a:hover {
	color:#908989;
}
/* ==========================================================================
                12.Subscribe Section
  ========================================================================== */ 
section#subscribe-section {
	float: left;
    width: 100%;	
	padding:60px 0px;
	background:url(../images/bg/subscribe-bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}
section#subscribe-section:after{
    position: absolute;
    content: '';
	width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;	
    background: rgba(255, 255, 255, 0.61);
}
.subscribe-contents {
	float: left;
    width: 100%;
    position: relative;
    z-index: 1;
	text-align:center;
}
.subscribe-contents h6 {
    font-size: 18px;
    color: #444;
    letter-spacing: 4px;
    font-weight: 500;   
}
.subscribe-contents form {
    float: left;
    width: 100%;
    margin-top: 30px;
}
.subscribe-contents input.subs-textbox {
    width: 300px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    background: transparent;
    border: 1px solid #444;
    -webkit-transition:.5s ease-in;
	-moz-transition:.5s ease-in;
	-ms-transition:.5s ease-in;
	-o-transition:.5s ease-in;
	transition:.5s ease-in;
}
.subscribe-contents input.subs-textbox:focus {
    -webkit-box-shadow: 0px 0px 8px 1px rgba(128, 128, 128, 0.6);
	-moz-box-shadow: 0px 0px 8px 1px rgba(128, 128, 128, 0.6);
	-ms-box-shadow: 0px 0px 8px 1px rgba(128, 128, 128, 0.6);
	-o-box-shadow: 0px 0px 8px 1px rgba(128, 128, 128, 0.6);
	box-shadow: 0px 0px 8px 1px rgba(128, 128, 128, 0.6);
}
.subscribe-contents input.subs-button {
    padding: 7px 20px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
	background: rgba(255,255,255, .8);
	-webkit-transition:.5s;
	-moz-transition:.5s;
	-ms-transition:.5s;
	-o-transition:.5s;
	transition:.5s;
}
input.subs-button:hover {
    background: #111;
    color: #fff;
}
/* ==========================================================================
                13.Contact-section
  ========================================================================== */ 
section#contact-section {
	float: left;
    width: 100%;	
	padding:60px 0px;
}
.contact-contents {
    float: left;
    width: 100%;
    margin: 50px 0px;
}
.single-contact-information	{
	float: left;
	width:100%;
	padding-left:20%
}
.contact-icon {
    float: left;
    display: inline-block;
    margin-right: 20px;
    width: 34px;
    height: 34px;
    text-align: center;
}
.contact-icon i {
    position: relative;
    line-height: 34px;
    font-size: 16px;
    color: #ffffff;
    z-index: 9;
    width: 100%;
    height: 100%;
}
.contact-icon i:after {
    position: absolute;
    content: '';
    background-color: #2f2f2f;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    transform: rotate(45deg);
    z-index: -1;
}
.single-contact-details {
    float: left;
    display: block;
}
.single-contact-details h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
	color: #444;
}
.single-contact-details p {
    font-size: 13px;
    line-height: 16px;
    margin-top: 6px;
    color: #444;
}
.single-contact-details p a{
    font-size: 13px;
    line-height: 16px;
    margin-top: 6px;
    color: #444;
}
.contact-form {
    float: left;
    width: 100%;
}
.contact-form input.contact-textbox {
    width: 100%;
    border-bottom: 1px solid #d0d0d0;
    padding: 5px 10px;
    margin-bottom: 30px;
    font-size: 14px;
	-webkit-transition:.3s ease-in;
	-moz-transition:.3s ease-in;
	-ms-transition:.3s ease-in;
	-o-transition:.3s ease-in;
	transition:.3s ease-in;
}
.contact-form input.contact-textbox:focus {
	border-bottom: 1px solid #000000;
}
.contact-form textarea.contact-textbox {
    width: 100%;
	height:150px;
    border-bottom: 1px solid #d0d0d0;
    padding: 5px 10px;
    margin-bottom: 30px;
    font-size: 14px;
	-webkit-transition:.3s ease-in;
	-moz-transition:.3s ease-in;
	-ms-transition:.3s ease-in;
	-o-transition:.3s ease-in;
	transition:.3s ease-in;	
}
.contact-form textarea.contact-textbox:focus {
	border-bottom: 1px solid #000000;
}
.contact-form input.contact-button {
    text-align: center;
    padding: 10px 60px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #444;
    display: inline-block;
    margin-top: 20px;
    background: rgb(208, 208, 208);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    transition: background .4s,color .4s;
}
.contact-form input.contact-button:hover{
	background:#444;
	color:#fff
}
/* ==========================================================================
                14.footer 
  ========================================================================== */ 
footer {
	float: left;
    width: 100%;	
	padding:50px 0px;
	padding-bottom:40px;
	background:url(../images/bg/footer-bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}
footer:after{
    position: absolute;
    content: '';
	width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;	
    background: rgba(0, 0, 0, 0.7);
}  
.footer-contents {
	float: left;
    width: 100%;
	position:relative;
	z-index:1;
}
.footer-contents p{
    clear: both;
    text-align: center;
    padding: 7px 0;
    width: 100%;color: #fff;
        font-size: 13px;
}
.footer-logo {
    float: left;
    width: 100%;
    text-align: center;
}
.footer-logo img {
    width: 120px;
}
.footer-logo p {
    font-size: 12px;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d0d0d0;
}  
.footer-menu {
    float: left;
    width: 100%;
    text-align: center;
}
.footer-menu ul li {
    list-style: none;
    display: inline-block;
    padding: 0px 30px;
}
.footer-menu ul li a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #efefef;
	-webkit-transition:.4s;
	-moz-transition:.4s; 
	-ms-transition:.4s; 
	-o-transition:.4s; 
	transition:.4s; 
}
.footer-menu ul li a:hover {
    color: #989898;
}
.footer-social-links {
    float: left;
    width: 100%;
    text-align: center;
	margin-top:30px;
}
.footer-social-links ul li {
    list-style: none;
    display: inline-block;
    padding: 0px 20px;
}
.footer-social-links ul li a {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    width: 40px;
    height: 40px;
    background-color: #d0d0d0;
    display: block;
    line-height: 40px;
    border-radius: 50%;
	-webkit-transition: background .4s,color .4s;
	-moz-transition: background .4s,color .4s; 
	-ms-transition: background .4s,color .4s; 
	-o-transition: background .4s,color .4s; 
	transition: background .4s,color .4s; 
}
.footer-social-links ul li a:hover {
    background-color: #000;
    color: #d0d0d0;
}
.footer-social-links ul li a i {
    padding-left: 2px;
}
.copyright {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #1d1b1b;
    padding-top: 30px;
}
.copyright p {
    color: #d0d0d0;
    font-size: 12px;
	display:block;
	letter-spacing: 2px;
}
/* ==========================================================================
                15.Page-title-section
  ========================================================================== */
section#page-title-section {
    position:relative;
	top:0px;
	left:0px;
	float: left;
    width: 100%;
	height:400px;	
	background:url(../images/bg/page-title-bg.jpg) 50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed
}
section#page-title-section:after{
    position: absolute;
    content: '';
	width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;	
    background: rgba(0, 0, 0, 0.7);
}
.page-title {
    float: left;
    width: 100%;
    position: absolute;
    top: 30vh;
    left: 0px;
    text-align: center;
    z-index: 1;
}
.page-title h6 {
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
    color: #d6d6d6;
    letter-spacing: 8px;
}
.page-title p {
    color: #d6d6d6;
    font-size: 12px;
    margin-top: 20px;
    letter-spacing: 4px;
    font-weight: 300;
}
/* ==========================================================================
                16.Inner-content-section
  ========================================================================== */
section.inner-content-section {
	float: left;
    width: 100%;
	padding:100px 0px;
}
.about-us-contents-inner {
    float: left;
    width: 100%;
	margin-bottom: 40px;
}
.about-us-contents-inner h5 {
	font-size: 24px;
	color:#111;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
	margin-bottom:30px;
	display:inline-block;
}
.about-us-contents-inner p {
    font-size: 16px;
    line-height: 24px;
    color: #444444;
	margin-bottom:10px;
}
.about-us-contents-inner a.view-link {
    text-align: center;
    padding: 10px 50px;
	font-size:12px;
	font-weight:400;
	letter-spacing:2px;
	text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
	background: #111;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	-ms-border-radius:2px;
	-o-border-radius:2px;
	border-radius:2px;
	-webkit-transition: background .4s,color .4s;
	-moz-transition: background .4s,color .4s; 
	-ms-transition: background .4s,color .4s; 
	-o-transition: background .4s,color .4s; 
	transition: background .4s,color .4s;  
}
.about-us-contents-inner a.view-link:hover {
	background: #ababab;
	color:#fff;
}
p.quote-contents {
    font-size: 16px;
    line-height: 24px;
    color: #444444;
    margin-bottom: 40px;
    text-align: center;
    padding: 0px 10%;
    font-style: italic;
}
.about-us-contents-inner .about-us-contents-img:before {
    top: 9px;
    left: 9px;
}
/* ==========================================================================
                17.Portfolio-Contents
  ========================================================================== */
.portfolio-contents {
    float: left;
    width: 100%;
    margin-top: 60px;
}
.single-portfolio-item {
    float: left;
    width: 100%;
    position: relative;
	overflow:hidden;
	margin-bottom:30px;
}
.single-portfolio-item img {
	width: 100%;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    bottom: 0; 
}
.single-portfolio-item:hover img {
    bottom: 60px; 
}
.single-portfolio-item .item-hover {
   	float:left;
	width:100%;
	text-align:center;
	padding:20px 0px;
    position: absolute;
    bottom: -60px;
    left: 0px;
    width: 100%;
    height: 80px;
    background-color: #000;
    visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.single-portfolio-item:hover .item-hover {
    visibility:	visible;
	bottom: 0px;
}
.single-portfolio-item .item-hover h6 {
    color: #fff;
    font-size: 16px;
	font-weight:500;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.single-portfolio-item .item-hover a {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin-top:5px;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;	
}
.single-portfolio-item .item-hover a:hover {
    color: lightgrey;
} 
.item-cat-2 h6{
	font-size: 14px !important;
} 
/* ==========================================================================
                18.Service-call-section
  ========================================================================== */
.service-call-section {
	float: left;
    width: 100%;	
	padding:60px 0px;
	background:url(../images/bg/call-bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}
.service-call-section:after{
    position: absolute;
    content: '';
	width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;	
    background: rgba(0, 0, 0, 0.35);
}
.service-call-section .call-contents {
	float: left;
    width: 100%;
    position: relative;
    z-index: 1;
	text-align:center;
}
.service-call-section .call-contents h6 {
    font-size: 18px;
    color: #fff;
    letter-spacing: 4px;
}
.service-call-section .call-contents p {
    color: #fff;
    margin-top: 20px;
    font-size: 15px;
	line-height:26px;
}
.service-call-section .call-contents a.view-link {
    text-align: center;
    padding: 10px 50px;
	font-size:14px;
	font-weight:400;
	letter-spacing:2px;
	text-transform: uppercase;
    color: #111;
    display: inline-block;
    margin-top: 20px;
	background: rgba(255,255,255, .8);
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	-ms-border-radius:2px;
	-o-border-radius:2px;
	border-radius:2px;
	-webkit-transition: background .4s,color .4s;
	-moz-transition: background .4s,color .4s; 
	-ms-transition: background .4s,color .4s; 
	-o-transition: background .4s,color .4s; 
	transition: background .4s,color .4s;  
}
.service-call-section .call-contents a.view-link:hover {
	background: #111;
	color:#fff;
}
/* ==========================================================================
                19.Why Choose Us
  ========================================================================== */
.single-speciality {
    float: left;
    width: 100%;
    text-align: center;
    padding: 40px 15px 0px 15px;
	margin-top:30px;
}
.single-speciality h6 {
	font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 20px;
    letter-spacing: 3px;
}
.single-speciality p {
    font-size: 14px;
    line-height: 22px;
    color: #444;
}
/* ==========================================================================
                20.Gallery
  ========================================================================== */
.single-gallery-item {
    float: left;
    width: 100%;
    position: relative;
	cursor:pointer;
    overflow: hidden;
	margin-bottom:30px;	
}
.single-gallery-item img {
    width: 100%;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;		
}
.single-gallery-item:hover img {
    transform:scale(1.1)
}
.gallery-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color: rgba(0, 0, 0, 0.8);
	text-align:center;
	opacity: 0;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.single-gallery-item:hover .gallery-hover {
    opacity: 1;
}
.gallery-hover h6 {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 300;
	letter-spacing:2px;
    margin-top: 28%;
	margin-bottom:15px;
}
.gallery-hover a {
    color: #fff;
    font-size: 16px;
    padding: 10px 10px;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: inline-block;
    border: 1px solid #fff;
}
.gallery-hover a:hover {
	color:#908989;
	border: 1px solid #908989;
}
/* ==========================================================================
                21.Clients-contents
  ========================================================================== */
.clients-contents {
    float: left;
    width: 100%;
	margin-top:80px;
}
.single-client {
    float: left;
    width: 100%;
	margin-bottom:40px;
}
.single-client img {
	width:100%;	
}
.single-client h6 {
    font-size: 14px;
    text-transform:capitalize;
    letter-spacing: 2px;
    font-weight: 400;
    color: #444;
	margin-top:20px
}
.single-client p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 300;
	letter-spacing: 1px;
    color: #444;
	margin-top:4px
}
/* ==========================================================================
                22.Faq
  ========================================================================== */
.faq-accordion {
    float: left;
    width: 100%;
	margin-top:80px;
}
.faqHeader {
	font-size: 16px;
	margin: 20px;
}

.panel-heading [data-toggle="collapse"]:after {
    font-family: 'FontAwesome';
    content: "\f068";
    float: right;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

.panel-heading [data-toggle="collapse"].collapsed:after {
	font-family: 'FontAwesome';
    content: "\f067";
    float: right;
    color: #F58723;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}
.panel-heading {
    background-color: #434343 !important;
    padding: 10px 15px;
	border-radius:0px !important;
}
.panel-body {
    font-size: 13px;
    padding: 20px 20px;
    line-height: 24px;
    font-weight: 400;
}
.panel.panel-default {
    margin-bottom: 5px;
}
h4.panel-title a {
    font-size: 12px;
	color: #fff;
	font-weight: 300;
	padding: 0px 6px;
	text-transform:uppercase;
	letter-spacing:2px;
}
h4.panel-title a:hover {
    color: #fff;
}
.panel-group .panel {
    border-radius: 0px;
}
.panel-default {
	border: none;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
     border:none !important; 
}
/* ==========================================================================
                23.404 Error
  ========================================================================== */
.error-contents {
    float: left;
    width: 100%;
    text-align: center;
	margin:20px 0px;
    padding: 60px 40px;
    border: 10px solid #444;
}
.error-contents h5 {
    font-size: 40px;
    text-transform: capitalize ;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 50px;
    margin-bottom: 20px;
	color:#444;
}
.error-contents p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 22px;
    margin-bottom: 20px;
}
.error-contents a {
    text-align: center;
    padding: 10px 60px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    background: rgb(68, 68, 68);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    transition: background .4s,color .4s;
}
.error-contents a:hover {
    background: rgb(208, 208, 208);
    color: #444;
}
/* ==========================================================================
                24.Under-construction-section
  ========================================================================== */
.under-construction-section {
	background:url(../images/bg/construction-bg.jpg) !important;
	background-size: cover !important;
}
.under-construction-text {
    float: left;
    width: 100%;
    position: relative;
    z-index: 99;
    top: 45vh;
    text-align: center;
}
.under-construction-text h4 {
    font-size: 50px;
    text-transform: uppercase;
    color: #ececec;
    font-weight: 200;
    letter-spacing: 10px;
    margin-bottom: 15px;
}
.under-construction-text p {
    font-size: 16px;
    text-transform: uppercase;
    color: #ececec;
    font-weight: 200;
    letter-spacing: 4px;
}
/* ==========================================================================
                25.Coming-soon
  ========================================================================== */
.coming-banner{
    text-align: center;
    position: relative;
    margin-top: -60px;
    z-index: 9;
    display: inline-block;
    width: 100%;
}
.coming-banner-cnt{
    background: #fff;
    width: 100%;
    max-width: 700px;
    /*border-top: 8px solid #289b0c;*/
    border-radius:5px;
    padding: 20px 20px 20px;
    margin: 0 auto;
    box-shadow: 2px 2px 8px 0px #00000029;
}
.coming-banner-cnt h4{
         color: #289b0c;
    font-size: 30px;
     font-family: 'Gotham-Medium';
    margin-bottom: 10px;
    border-bottom: 1px dashed #eaeaea;
    padding-bottom: 8px;text-transform: uppercase;
}
.coming-banner-cnt h3{
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 10px;
}
.obj{
    padding:40px 0 0;
}
.obj ul>li{
    margin-bottom: 12px;
    display: flex;
    width: 100%;
    text-align: justify;
    word-spacing: -0.5px;
    line-height: 23px;
    font-weight: 500;
    font-size:18px;
    padding-left:25px;
    position:relative;
}
.obj ul>li:before {
  content: "\f0ac"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  position:absolute;
 left: 0; /* same as padding-left set on li */
  width: 15px; /* same as padding-left set on li */
  color: #289b0d;
}

.obj ul>li span{display: inline-flex;font-weight:600;text-align: left;}
.obj ul>li i{display: inline-flex;float: left;padding-right: 10px;color: #289b0d;}
.list-cont{
    display: block;
    clear: both;
    border:1px solid #efefef;
    padding: 10px 15px;
    border-left: none;
    border-right: none;
}
.list-cont ul{width: 910px;
    margin: 0 auto;max-width:100%;}
.list-cont ul >li{
    font-weight: 600;
    padding: 8px 0;
    text-align:justify;position:relative;
        font-size: 18px;
    line-height: 22px;
}
.list-cont ul >li:before {
  content: "\f0ac"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  position:absolute;
  margin-left: -25px; /* same as padding-left set on li */
  width: 15px; /* same as padding-left set on li */
  color: #289b0d;
}
.invite-tittle h5{
    font-size: 26px;
}
.list-cont ul >li > i{color:#289b0d;padding-right:5px;}
.list-cont ul >li > span{}
.let-me-know{
    background: #289b0d;
    position: relative;
    overflow:hidden;
}
.top-bane{top:-35px;}
.let-me-know h4{
    border-bottom:none;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.let-me-know h3{
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 20px;
    font-family: 'Gotham-Medium';
}
.let-me-know i{
    position: absolute;
    left: 20px;
    font-size: 115px;
    color: #FFE;
    top: -3px;
    opacity: 0.3;
     filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0.5);
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.why_wni{
    text-align: right;padding:70px 0;
}
.why_wni h6{font-size: 40px;font-weight: 600;}
.modal-content{
    box-shadow:none;
    background:#fff;
    border:none;
    padding: 20px 70px;
    border-radius:0;
     background-image: url("../images/worldislamicnews.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    position:relative;
    background-position:center center;
}
.modal-content:after{
    position:absolute;
    content:"";
    height:100%;
    width:100%;
    top:0;
    left:0;
    background:#fff;
    opacity:0.9;
    
}
.modal-content p{
    text-align:justify;
    line-height:24px;
    font-size:15px;
        font-weight: 600;
}
.lg-head{
    margin-bottom: 10px;
    font-size: 22px;

    padding: 8px 0 8px 10px;
    background: #e7e7e7;
}
.lg-head h4{    font-weight:bold;}
.sm-head{
    padding: 8px 0;
        font-weight: 600;
    border-bottom: 2px solid #76bf4a;
    color: #76bf4a;
    margin-top:10px;    margin-bottom: 10px;
}
.modal-content ul{padding:10px 0 10px 15px;}
.modal-content ul>li{line-height:28px;  font-size:15px;
           font-weight: 600;
    padding-left: 15px;position:relative;}
    .modal-content ul>li:before {
  content: "\f18e"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
}
#btn-close-modal{
    position: fixed;
    z-index: 9;
    background: #f00;
    right: 20px;
    width: 40px;
    text-align:center;
    line-height:40px;
    height: 40px;cursor:pointer;
    color:#fff;
}
.modal-body{position:relative;z-index:3;}

/* Social Icons */
#social_side_links {
	position: fixed;
  top: 45%;
  left: 0;
  padding: 0;
  list-style: none;
  z-index: 99;
}
#social_side_links li{
    width: 40px;
    height: 40px;
}
#social_side_links li a {
    display: block;
    font-size: 20px;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    color: #fff;
}

#social_side_links li a i{
	display: block;
	max-width:40px;
  padding: 10px;
  -webkit-transition:  background .2s ease-in-out;
  -moz-transition:  background .2s ease-in-out;
  -o-transition:  background .2s ease-in-out;
  transition:  background .2s ease-in-out;
}

#social_side_links li a:hover i{background: rgba(0, 0, 0, .2);}

@media screen and (max-width:600px){
    #social_side_links {width:100%;top:auto;bottom:0;}
    #social_side_links li{width:25%;float:left;}
    #social_side_links li a i{max-width:100%;}
}